home *** CD-ROM | disk | FTP | other *** search
- *** 1.9 1992/01/14 19:55:12
- --- Changelo 1992/03/06 19:43:49
- ***************
- *** 104,106 ****
- --- 104,111 ----
- thanks to scott for this idea.
-
- -------------------------- Patchelevel 10 ---------------------------------
- +
- + xconsole.c:: ++jrb
- + back out the above change to xconsole as it plays havoc with
- + international kbds where some of the more regular keys are entered by
- + alt'ing.
- *** 1.8 1992/01/14 19:55:12
- --- PatchLev.h 1992/03/06 19:43:50
- ***************
- *** 1,5 ****
- /*
- ! * PathLevel: 10
- *
- * the Patch Level above is to identify the version
- * of the all the files in this directory. given the above
- --- 1,5 ----
- /*
- ! * PathLevel: 11
- *
- * the Patch Level above is to identify the version
- * of the all the files in this directory. given the above
- *** 1.6 1992/01/14 19:55:12
- --- xconsole.c 1992/03/06 19:44:07
- ***************
- *** 156,164 ****
- {
- k_buf *p;
- short i, j, dev;
- ! unsigned scan, key, shft = 0;
- long r;
- - static unsigned char _alt_str[2] = {0, 0};
-
- dev = LOOKUP(handle);
-
- --- 156,163 ----
- {
- k_buf *p;
- short i, j, dev;
- ! unsigned scan, key, shft;
- long r;
-
- dev = LOOKUP(handle);
-
- ***************
- *** 185,198 ****
- if (scan > 0 && scan < N_KEYCODES) {
- shft = Kbshift(-1);
- if (shft & S_ALT)
- - {
- _str = kb_alt[scan];
- - if(!_str)
- - { /* return <META>-key */
- - _str = (char *)_alt_str;
- - _alt_str[0] = 0x80 | key;
- - }
- - }
- else if (shft & S_SHIFT)
- _str = kb_shft[scan];
- else if (!(shft & S_CNTRL))
- --- 184,190 ----
-